25ac0020550100be6c569a310dea3e9808f83ea4,cdap-examples/SportResults/src/main/java/co/cask/cdap/examples/sportresults/SportResults.java,SportResults,configure,#,32
Before Change
// Properties for Explore (to create a partitioned Hive table)
.setEnableExploreOnCreate(true)
.setExploreFormat("csv")
.setExploreSchema("team STRING, wins INT, ties INT, losses INT, scored INT, conceded INT")
.build());
}
}
After Change
// Properties for Explore (to create a partitioned Hive table)
.setEnableExploreOnCreate(true)
.setExploreFormat("csv")
.setExploreSchema("team STRING, wins INT, ties INT, losses INT, scored INT, conceded INT")
.setDescription("FileSet dataset of aggregated results for each sport league")
.build());
}
}